/*--------------------------------------------------------------
  0.0 CSS RESET

  v2.0 | 20110126
  http://meyerweb.com/eric/tools/css/reset/
  License: none (public domain)
--------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-family: "Poppins SemiBold", sans-serif;
    font-size: inherit;
}



/*--------------------------------------------
    1.0 values responsive design
--------------------------------------------*/

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

/*--------------------------------------------
    2.0 Content
--------------------------------------------*/

h1 {
  text-align: center;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 500;
  font-size: 4em;
  margin: 1em 0;
  user-select: none;
}

h2 {
    column-span: all;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    margin: 1em 0;
    user-select: none;
}


/*--------------------------------------------
    3.0 Photo GALLERY - default
--------------------------------------------*/
img {
    width: 100%;
    height: auto;
    margin-bottom: 0.3em;
    cursor: pointer;
    user-select: none;
}

article {
    display: block;
    margin: auto;
}

section {
  margin-left: auto;
  margin-right: auto;
  column-count: 4;
  column-gap: 0.3em;
  display: block;
}

/* iPhone in landscape and portrait */
@media only screen and (max-width : 1400px) {
    section {
        column-count: 1;
        column-gap: 0.6em;
    }

    img {
        margin-bottom: 1.6em;
    }

    h1 {
        font-size: 8em;
        margin: 0.6em 0 0 0;
    }

    h2 {
        font-size: 4em;
        margin: 1em 0 0.6em 0;
    }
}

/*--------------------------------------------
    4.0 Photo GALLERY - swipe / single img
--------------------------------------------*/

/* background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    padding-top: 6em; /* Location of the img in the modal box */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: auto;
    height: 60%;
    padding-top: 4em;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    text-align: center;
    color: #ccc;
    padding: 1em 0;
    font-size: 1 em;
    font-family: sans-serif;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
    -webkit-animation-name: zoom;  /* name of the keyframe I want to bind to selector */
    -webkit-animation-duration: 0.6s;
    -moz-animation-name: zoom;
    -moz-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

/* chrome, safari, opera */
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

/* firefox */
@-moz-keyframes zoom {
    from {-moz-transform:scale(0)} 
    to {-moz-transform:scale(1)}
}

/*internet explorer */
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 0.6em;
    right: 0.6em;
    color: #f1f1f1;
    font-size: 3em;
    font-weight: bold;
    transition: 1s; /* duration of change when :hover or :focus */
    user-select: none;
}

.close:hover,
.close:focus {
    color: #bbb;
    cursor: pointer;
}

/* The Arrow */
.arrow {
    font-size: 10em;
    color: #f1f1f1;
    transition: 1s;
    padding-top: 25vh;
    user-select: none;
}

.arrow:hover,
.arrow:focus {
    color: #bbb;
    cursor: pointer;
}

.left {
    float: left;
    margin-left: 0.6em;
}

.right {
    float: right;
    margin-right: 0.6em;
}
